From a600e6bcf5712778ba6c9ea8ab10939090ba8fef Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 2 Dec 2016 14:27:37 -0800 Subject: [PATCH] Use -j1 on recursive make for OpenSSL It looks like OpenSSL building on OSX has races... --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ef02d4547..89e3f2a31 100644 --- a/Makefile.in +++ b/Makefile.in @@ -266,7 +266,7 @@ target/openssl/$(1).stamp: target/openssl/openssl-$$(OPENSSL_VERS).tar.gz \ AR=$$(OPENSSL_AR_$(1)) \ $$(SETARCH_$(1)) ./Configure --prefix=$$(OPENSSL_INSTALL_$(1)) \ no-dso $$(OPENSSL_OS_$(1)) -fPIC $$(OPENSSL_CFLAGS_$(1))&& \ - $(MAKE) -j10 && \ + $(MAKE) -j1 && \ $(MAKE) install) touch $$@ -- 2.30.2